home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 September / PCWorld_2006-09_cd.bin / v cisle / drives / pcwDrives.exe / pcwDrives.BAT
DOS Batch File  |  2006-07-14  |  766b  |  25 lines

  1. @echo off
  2. set drv=%*
  3. if %drv%.==. set drv=C D E F G H I J K L M N O P Q R S T U V W X Y Z
  4. for %%n in (%drv%) do (
  5. if exist %%n:\ (
  6. echo.
  7. fsutil.exe fsinfo volumeinfo %%n:\ | find.exe "Volumename"
  8. fsutil.exe fsinfo drivetype %%n:
  9. fsutil.exe fsinfo volumeinfo %%n:\ | find.exe "Dateisystem"
  10. fsutil.exe fsinfo volumeinfo %%n:\ | find.exe "Dateisystem" | find.exe "NTFS" > NUL
  11. if not errorlevel 1 (
  12. fsutil.exe fsinfo ntfsinfo %%n:|find.exe "pro Cluster"
  13. fsutil.exe fsinfo statistics %%n:|find.exe "UserFileRead"
  14. fsutil.exe fsinfo statistics %%n:|find.exe "UserFileWrite"
  15. fsutil.exe dirty query %%n:
  16. )
  17. )
  18. )
  19.  
  20. echo.
  21. echo NASTAVENI pro vsechny diskove jednotky:
  22. fsutil.exe behavior query disablelastaccess
  23. fsutil.exe behavior query disable8dot3
  24. echo.
  25.